Slides

Josh Sweren

Image 1

Phillies Game

Image 2

Orioles Game

Python Cell

Show code
import numpy as np
import matplotlib.pyplot as plt
x = [1,2,3,4,5,6,7,8,9,10]
y = [1,4,9,16,25,36,49,64,81,100]
plt.scatter(x,y, color='#68A2B9')
plt.xlabel("X")
plt.ylabel("X-squared")
plt.show()

References

(Dhar 2013) (Wickham, Çetinkaya-Rundel, and Grolemund 2023)

Dhar, Vasant. 2013. “Data Science and Prediction.” Communications of the ACM 56 (12): 64–73.
Wickham, Hadley, Mine Çetinkaya-Rundel, and Garrett Grolemund. 2023. R for Data Science. " O’Reilly Media, Inc.".